home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / mem.man < prev    next >
Text File  |  1989-02-09  |  2KB  |  69 lines

  1. ' Copyright 1989 Regents of the University of California
  2. ' Permission to use, copy, modify, and distribute this
  3. ' documentation for any purpose and without fee is hereby
  4. ' granted, provided that this notice appears in all copies.
  5. ' The University of California makes no representations about
  6. ' the suitability of this material for any purpose.  It is
  7. ' provided "as is" without express or implied warranty.
  8. ' $Header: /sprite/src/lib/c/string/RCS/mem.man,v 1.2 89/02/09 10:27:17 ouster Exp $ SPRITE (Berkeley)
  9. .so \*(]ltmac.sprite
  10. .HS mem lib
  11. .BS
  12. .SH NAME
  13. memchr, memcmp, memcpy, memset \- Operations on byte arrays
  14. .SH SYNOPSIS
  15. .nf
  16. \fB#include <string.h>
  17.  
  18. \fBchar *
  19. \fBmemchr(\fIs\fB, \fIc\fB, \fIn\fB)
  20.  
  21. \fBint
  22. \fBmemcmp(\fIs\fB, \fIs2\fB, \fIn\fB)
  23.  
  24. \fBchar *
  25. \fBmemcpy(\fIdest\fB, \fIsource\fB, \fIn\fB)
  26.  
  27. \fBchar *
  28. \fBmemset(\fIdest\fB, \fIc\fB, \fIn\fB)
  29. .SH ARGUMENTS
  30. .AS char source
  31. .AP char *s in
  32. Pointer to array of characters.
  33. .AP char *source in
  34. Pointer to array of characters to copy.
  35. .AP char *dest out
  36. Pointer to array of characters to modify.
  37. .AP int c in
  38. Value to search for (\fBmemchr\fR), or value to set to (\fBmemset\fR).
  39. .AP int n in
  40. Count of number of characters to test, copy, or set.
  41. .BE
  42.  
  43. .SH DESCRIPTION
  44. These procedures manipulate memory as counted arrays of bytes.
  45. .PP
  46. The \fBmemchr\fR procedure searches for the first occurrence of \fIc\fR
  47. in the \fIn\fR bytes starting at \fIs\fR, and returns the address of the
  48. first such occurrence.  If the value \fIc\fR is not found, then \fBNULL\fR
  49. is returned.
  50. .PP
  51. \fBMemcmp\fR compares two arrays of bytes, \fIs\fR and \fIs2\fR, in
  52. order, until a difference is found or \fIn\fR bytes have been compared.
  53. It returns a value greater than zero if, in the first differing byte,
  54. the value \fIs\fR is greater than the value in \fIs2\fR.  If the value
  55. in \fIs\fR is less than the value in \fIs2\fR, then a value less than
  56. zero is returned.  If the two arrays are identical in their first \fIn\fR
  57. bytes, then zero is returned.  Signed character comparison is used.
  58. .PP
  59. \fBMemcpy\fR copies \fIn\fR bytes from \fIsource\fR to \fIdest\fR and
  60. returns \fIdest\fR as its result.
  61. .PP
  62. \fBMemset\fR stores the value \fIc\fR in each of the \fIn\fR bytes starting
  63. at \fIdest\fR, and returns \fIdest\fR as its result.
  64.  
  65. .SH KEYWORDS
  66. characters, copy, memory, set, test
  67.